84149412324805e2ed291a37f9749f902d19a8f5,plugins/android/src/org/jetbrains/android/run/AndroidRunningState.java,AndroidRunningState,prepareAndStartApp,#IDevice#,514
Before Change
try {
if (!uploadAndInstall(device, myPackageName, module)) return false;
if (!uploadAndInstallDependentModules(device)) return false;
return myApplicationLauncher.launch(this, device);
}
catch (TimeoutException e) {
LOG.info(e);
After Change
if (!uploadAndInstall(device, myPackageName)) return false;
if (!uploadAndInstallDependentModules(device)) return false;
}
if (!myApplicationLauncher.launch(this, device)) return false;
synchronized (myDebugLock) {
Client client = device.getClient(myTargetPackageName);
if (client != null) {